home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 …ember: Reference Library / Dev.CD Dec 00 RL Disk 1.toast / pc / technical documentation / develop / develop issue 26 / develop issue 26 code / som and listpart / listpart dr4 / source / debugtools.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-22  |  679 b   |  25 lines

  1. #ifndef __DEBUGTOOLS__
  2. #define __DEBUGTOOLS__
  3.  
  4. /*
  5. ** Prototypes
  6. */
  7.  
  8. void dn(long param);                         /* entier         */    
  9. void du(char param);                        /* caractère     */
  10. void dr(long param);                        /* OSType        */
  11. void db(long param);                         /* booléen        */
  12. void da(long param);                        /* adresse        */
  13. void dhl(long param);                        /* hexa long    */
  14. void dpm(long param, short len);            /* mem de param sur len octets */
  15. void dd();                                    /* initialisation */
  16. void dp();                                    /* affichage    */
  17. void ds(char *param);                        /* string        */
  18. void dc();                                    /* virgule        */
  19. void dh(long param);                        /* hexa    court    */
  20.  
  21. void dpg();
  22. void logon();                                /* résultat debug dans 'debug.output' */
  23. void logoff();
  24.  
  25. #endif